home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 98 / CD-ROM 98.iso / infantil / tuxmath / tuxmath-2001.09.07-win32-installer.exe / src / title.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-08-28  |  412 b   |  33 lines

  1. /*
  2.   title.h
  3.  
  4.   For TuxMath
  5.   The title screen function.
  6.  
  7.   by Bill Kendrick
  8.   bill@newbreedsoftware.com
  9.   http://www.newbreedsoftware.com/
  10.  
  11.  
  12.   Part of "Tux4Kids" Project
  13.   http://www.tux4kids.org/
  14.       
  15.   August 26, 2001 - August 28, 2001
  16. */
  17.  
  18.  
  19. #ifndef TITLE_H
  20. #define TITLE_H
  21.  
  22. enum {
  23.   CMD_GAME,
  24.   CMD_OPTIONS,
  25.   CMD_CREDITS,
  26.   CMD_QUIT,
  27.   NUM_CMDS
  28. };
  29.  
  30. int title(void);
  31.  
  32. #endif
  33.